home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / dfpp01.zip / CLOCK.H < prev    next >
C/C++ Source or Header  |  1992-11-21  |  191b  |  18 lines

  1. // --------- clock.h
  2.  
  3. #ifndef CLOCK_H
  4. #define CLOCK_H
  5.  
  6. #include "timer.h"
  7.  
  8. class Clock    {
  9.     Timer clocktimer;
  10. public:
  11.     Clock();
  12.     void DispatchEvent();
  13. };
  14.  
  15. #endif
  16.  
  17.  
  18.